home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / mdbtar~1.z / mdbtar~1 / makefile.gcc next >
Encoding:
Makefile  |  1989-05-11  |  472 b   |  22 lines

  1. #
  2. # make file for mdb with gcc
  3. #
  4.  
  5. # path to gkernel
  6. GKERNEL = ../gnu/gkernel
  7. CC = mgcc
  8.  
  9. # use this if you want to debug mdb with mdb
  10. #CFLAGS=-DATARI_ST -I. -I../gnu/gkernel -mshort -O
  11. # use this if you dont want to debug mdb with mdb
  12. CFLAGS=-DATARI_ST -I. -I../gnu/gkernel -mshort -O -fomit-frame-pointer -fcombine-regs
  13.  
  14. OBJS=mdb.o mdbexp.o mdbdis.o strtol.o
  15. LIB = -lips
  16.  
  17. mdb: $(OBJS)
  18.     $(CC) -o $@ $(OBJS) $(LIB) -mshort -s -z
  19.     chmem =30000 $@
  20. clean:
  21.     rm -f *.o *.sym mdb
  22.